home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / ctutor.exe / ANSWERS / CH03_2.C < prev    next >
Text File  |  1994-05-15  |  602b  |  33 lines

  1. main()
  2. {
  3. int index;
  4.  
  5.    index = 1;
  6.    do {
  7.       printf("The count is now %2d",index);
  8.       if (index == 3)
  9.          printf(" and is equal to three.");
  10.       if (index == 7)
  11.          printf(" and is equal to seven.");
  12.       printf("\n");
  13.       index = index + 1;
  14.    } while (index < 11);
  15. }
  16.  
  17.  
  18.  
  19. /* Result of execution
  20.  
  21. The count is now  1
  22. The count is now  2
  23. The count is now  3 and is equal to three.
  24. The count is now  4
  25. The count is now  5
  26. The count is now  6
  27. The count is now  7 and is equal to seven.
  28. The count is now  8
  29. The count is now  9
  30. The count is now  10
  31.  
  32. */
  33.